Search the Community
Showing results for '{query}'.
Found 12 results
-
Hi I recently discovered by phone had been rooted before being unlocked. Anyway when i tested for root using rootchecker the permission prompt popped up asking me to accept or decline. However, it never did this with anyother apps I downloaded in the past 6 months. Ive hadsuper user on the phone the whole time but never really paid attention to it. It was only last week when I googled it i learned about rooting so i used rootchecker. At no point until then did the permissions prompt ever appear. Is this normal? Should it only prompt for apps like that to check root and then apps I specifically ask it to prompt for? all my other apps in the past 6 months just downloaded without this prompt otherwise i would have looked into what supersu was a long time ago. thanks
-
Hello i want To install Android on my PC but the install is stuck on firmware bug acpi BIOS_osi linux query ignored can someone help me
-
You can try searching over the Google for "online sitemap creator" I am sure you will find a number of websites that can help you in creating sitemaps for your website. PS: Please note this is an Android forum and I don't think putting your question over here is going to answer your question. So better option would be moving forward with the various online SEO communities as the chances of getting query answered over there's higher.
-
Well, @DK57 sorry for taking long in answering your query as I was celebrating weekend just a little more which has keep my hands from my desktop. Anyway coming back to your query, try going to the menu there should be application installed over your device names Google Settings>Location>Location Reporting> Switch that off, done ! Is this what you are trying to do ?? :)
-
Well, I think your query was solved "Problem solved: I managed by exchanging emails to discover that my wife's phone had not actually logged on to any Canadian mobile network.Once that was rectified all was well " (http://www.googlenexusforum.com/) :D Problem Solved: I managed by exchanging emails to discover that my wife's phone had not actually logged on to any Canadian mobile network.Once that was rectified all was well (http://forums.androidcentral.com/) :D and Yes, How could I forgot that because I was the one who is trying to help you over AndroidPit B) Problem Solved Thread Closed.
-
Well, that's just weird I think I have seen this query somewhere else anyway I would answer the same thing for you too. I think the problem is because of rooting your device you need to unroot it, go to the sammobile/firmware section and download the appropriate firmware available for you according to your region. Once you have it downloaded enable the usb debugging from the developer option and then flash that ROM onto your device using the help of ODIN what this will do is it will unroot your device and your device will be eligible to get all the stock firmware updates. :)
-
Well, firstly I'd like to say text size can be altered using the size option, it's very hard to read your text, when i was reading you're query i have put on my glasses and move a bit closer to my system in order to read what's going on with you ??? Well, as far as the answer of this question i would say that you need to factory reset your device inorder to get the things working back normally, TOUCH might not be working because CMW-5.02.7 is a version that is full of bugs for some people it works fine and again for some had a hell of day in getting things back to normal. So solution for you is to get it factory reset it ....
-
i have a list view in which i am having data from data base and filling it using custom adapter now i want add search functon in it.. plz help me here is the code what i have tried import java.util.ArrayList; import android.app.Activity; import android.content.Context; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.view.View.OnClickListener; import android.widget.ArrayAdapter; import android.widget.BaseAdapter; import android.widget.Filter; import android.widget.TextView; import android.widget.Toast; import com.virinchisoftware.adconnect.R; public class UDUserListAdapter extends ArrayAdapter { private ArrayList lid, lname, lclass, lcat, ldate, ltype; Context ctx; int item; private LayoutInflater mInflate; private int mResourceId; TextView userId,userName, indexno, logindate,useredit,userdelete; private ArrayList data; private ArrayList originalList; private static LayoutInflater inflater=null; private Activity activity; SubMenuSelectedListener mListener; UserFilter filter; public UDUserListAdapter(Activity c,int a,ArrayList data){ super(c,a,data); this.data = new ArrayList(); this.data.addAll(data); this.originalList = new ArrayList(); this.originalList.addAll(data); this.activity =c; this.data=data; mInflate = (LayoutInflater) activity .getSystemService(Context.LAYOUT_INFLATER_SERVICE); } @Override public View getView(int position, View convertView, ViewGroup parent) { convertView = mInflate.inflate(R.layout.uduserlist, null); userId = (TextView) convertView.findViewById(R.id.textView1); userName = (TextView) convertView.findViewById(R.id.textView2); indexno = (TextView) convertView.findViewById(R.id.textView3); logindate = (TextView) convertView.findViewById(R.id.textView4); useredit = (TextView) convertView.findViewById(R.id.textView6); userdelete = (TextView) convertView.findViewById(R.id.textView7); try { mListener = (SubMenuSelectedListener) activity; } catch (ClassCastException e) { throw new ClassCastException(activity.toString() + " must implement OnURLSelectedListener"); } UserDataBase lessondb=data.get(position); userId.setText(lessondb.getUserId()); userName.setText(lessondb.getUserName()); //indexno.setText(lessondb.getIndexno()); logindate.setText(lessondb.getDate()); return convertView; } @Override public int getCount() { return data.size(); } @Override public UserDataBase getItem(int position) { return null; } @Override public long getItemId(int position) { // TODO Auto-generated method stub return position; } public Filter getFilter() { // TODO Auto-generated method stub if(filter==null) filter=new UserFilter(); return filter; } private class UserFilter extends Filter{ @Override protected FilterResults performFiltering(CharSequence arg0) { // TODO Auto-generated method stub arg0 = arg0.toString().toLowerCase(); FilterResults result = new FilterResults(); if(arg0 != null && arg0.toString().length() > 0) { ArrayList userlist= new ArrayList(); for(int i = 0, l = originalList.size(); i { UserDataBase udb = originalList.get(i); if(udb.toString().toLowerCase().contains(arg0)) userlist.add(udb); } result.count = userlist.size(); result.values = userlist; } else { synchronized(this) { result.values = originalList; result.count = originalList.size(); } } return result; } @SuppressWarnings("unchecked") @Override protected void publishResults(CharSequence arg0, FilterResults arg1) { // TODO Auto-generated method stub data = (ArrayList)arg1.values; notifyDataSetChanged(); clear(); for(int i = 0, l = data.size(); i add(data.get(i)); notifyDataSetInvalidated(); } } } and this is the class where i'm using search function @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.uduser, container, false); informationlist = new ArrayList(); sortByclass = (Spinner) view.findViewById(R.id.sortbyclass); adduser = (ImageView) view.findViewById(R.id.ivadduserIcon); deleteuser = (ImageView) view.findViewById(R.id.ivdeleteuserIcon); listItems=(ListView) view.findViewById(R.id.lvUserTableItems); search=(EditText) view.findViewById(R.id.etsearchuser); sortclassAdapter = new ArrayAdapter(getActivity(), android.R.layout.simple_spinner_item, sortclass); sortclassAdapter .setDropDownViewResource(R.layout.simple_droupdown_spinner); sortByclass.setAdapter(sortclassAdapter); sortByclass.setSelection(0); adduser.setClickable(true); deleteuser.setClickable(true); adduser.setOnClickListener(this); deleteuser.setOnClickListener(this); //enables filtering for the contents of the given ListView listItems.setTextFilterEnabled(true); search.setOnClickListener(this); User(); return view; } private void User() { // TODO Auto-generated method stub adcdb.openToRead(); Cursor cursor = adcdb.queueUser(); if (cursor != null && cursor.getCount() > 0) { // startManagingCursor(cursor); Log.d("Select Query USer", String.valueOf(cursor.getCount())); cursor.moveToFirst(); for (int i = 0; i UserDataBase userdatabse = new UserDataBase(); userdatabse.setUserId(cursor.getString(cursor .getColumnIndex("u_id"))); userdatabse.setUserName(cursor.getString(cursor .getColumnIndex("user_name"))); userdatabse.setDate(cursor.getString(cursor .getColumnIndex("creation_date"))); informationlist.add(userdatabse); cursor.moveToNext(); } cursor.close(); adcdb.close(); ldlessonlistAdapter = new UDUserListAdapter(getActivity(),R.layout.uduserlist, informationlist); listItems.setAdapter(ldlessonlistAdapter); } } @Override public void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); } @Override public void onClick(View v) { // TODO Auto-generated method stub switch (v.getId()) { case R.id.ivadduserIcon: mListener.newUserSelected("New User"); case R.id.etsearchuser: search.addTextChangedListener(new TextWatcher() { @Override public void onTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) { // TODO Auto-generated method stub UDUsers.this.ldlessonlistAdapter.getFilter().filter(arg0.toString()); } @Override public void beforeTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) { // TODO Auto-generated method stub } @Override public void afterTextChanged(Editable arg0) { // TODO Auto-generated method stub } }); } }
-
Android app : Handling app request posted on Facebook
Birender posted a topic in Android Development
I went through various Facebook tutorials to handle Facebook integration into Native Android app and have achieved success implementing all flows including Facebook login, fetch user details, Share, Select friends. I am stuck in use case wherein app invite request sent by one user is handled for recipient. Problem statement: Facebook Send requesttutorial explains well on sending app request to friend which works fine for me as i can see success response as below. fbconnect://success?request=&to%5B0%5D= But the next step is to handle the request. As per tutorial, once recipient user opens up the Facebook forAndroid app and tap on the notification (I am seeing under top left menu -> Apps section), the app is launched using intent containing request data which can be pulled as below. Uri intentUri = getActivity().getIntent().getData(); Further request ID (one or more) can be fetched as below String requestIdParam = intentUri.getQueryParameter("request_ids"); In my case, Facebook app launches installed app but intentUri (statement listed above) itself is returned as null. Hence i can't proceed further extracting request details. Note: i could confirm that posted request contains complete info e.g. data using below method by passing hardcoded requestID obtained while posting (after logging into app as recepient user). private void getRequestDetails(String inRequestId) { Request request = new Request(Session.getActiveSession(), inRequestId, null, HttpMethod.GET, new Request.Callback() { @Override public void onCompleted(Response response) { Log.d (TAG, response.toString()); } }); // Execute the request asynchronously. Request.executeBatchAsync(request); } An early help/pointers will be higly appreciated. Also, is there a way to query pending app requests through Facebook API rather than invocation through Facebook native app intent invocation. -
Android + Arduino + Ethernet Shield
Paradigm replied to Paradigm's topic in Android Games And Applications
BTW, I want the Android to send the HTTP query without launching the web browser. Thanks a lot -
Dear All, I am trying a DIY home automation project. I had a Arduino + Ethernet Shield and a Andriod tablet. I would like to use my tablet to control the dimmer at home and also a ON/OFF light switch I am beginning with Android apps building and would like to know how can I send HTTP query to a webserver host by the Arduino Ethernet Shield? The program will read from the Edit box the IP address and then send HTTP query when a button is pressed http://192.169.1.177/?target=Z1L1status=ON When the progress bar slide from 0 to 100%, as it slide, it will send http://192.169.1.177/?target=Z1D2status=10% Can I know how to write the onclickListener & the onseekBarChangeListener to send the required HTTP query to the Arduino Web server. BTW, anyone had done this with Arduino Ethernet Shield? Is this concept workable? Thanks a lot
-
Hi All I wont to make a list (database) of assets, which would be mostly hardware. I need to have a number of fields like Serial #, Unit Type , Notes, Internal # and so on each entry, so I can query the database on each of them. In audition I would like to be able to have barcode attached to each product on the list so whenever I need to know details about product all I need to do is scan barcode with my smartphone. Last but not least is to be able to have that sync between 5 smartphones so all team can use and update the database. So is there an app that will do that? I looked on my own and the closest I got was with "Scanpet", problem with this one is that it would not sync with other mobiles. Thanks in advance.
- 3 replies
-
- scannerdatabase
- stock
-
(and 4 more)
Tagged with: